home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eoadaptors / Sybase / SybaseLoginPanel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-31  |  603 b   |  29 lines

  1. //  SybaseLoginPanel.h
  2. //  Copyright 1994, NeXT Computer, Inc.
  3.  
  4. #ifndef NeXT_PDO
  5.  
  6. #import <appkit/appkit.h>
  7. #import <foundation/NSDictionary.h>
  8.  
  9. @interface SybaseLoginPanel:Panel
  10. {
  11.     TextField *userNameField;
  12.     TextField *hostNameField;
  13.     TextField *databaseNameField;
  14.     TextField *passwordField;
  15.     TextField *versionField;
  16.     NSMutableDictionary *extraInfo;
  17. }
  18.  
  19. - cancel:sender;
  20. - login:sender;
  21.  
  22. - (void)setConnectionDictionary:(NSDictionary *)connectionInfo;
  23. - (NSDictionary *)connectionDictionary;
  24.     // These set and return the values of the text fields on the login panel.
  25.  
  26. @end
  27.  
  28. #endif
  29.